different portions of html commands
<p> new paragraph
</p> will end a paragraph
<!-- will omit things -->
<p align=center> alines things in the center of the page
<br> will break the line up (where you want to break the line)
<pre> will preformat a block of text (need at both ends of block)
</pre> will end a preformat command
<xmp> will exempt the html commands from executing
</xmp> will end the the exempt command
<img src="somepicturename.gif"> will put a
picture on the page. (eg.)
The below section will allow a pop-up box to show up when promped.
Starting with the below. (sets up paramiters)
<script language="Livescript">
function name() {"alert("Yikes! Watch where you put your mouse pointer!");"}
</script>
The command to activate it starts like
onmouseover="name()"
(e.g.)
<a href="somename.html" onmouseover="name()">
go ahead, try it. Move your mouse to the word below.
word
<xmp>